home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Misc / Flipper / Source / ImageView.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  572 b   |  34 lines

  1.  
  2. #import <appkit/View.h>
  3.  
  4. @interface ImageView:View
  5. {
  6.     id         imageList;
  7.     id         image;                /* NXBitmapImageRep of current picture */
  8.     NXPoint scaleFactor;        /* current scaling factor of image */
  9.     double    period;
  10.     id        periodText;
  11.     id        slider;
  12.     DPSTimedEntry te;
  13.     BOOL     animating;
  14. }
  15.  
  16. /* INIT/FREE METHODS */
  17.  
  18. - initFrame:(NXRect *)frameRect;
  19. - free;
  20.  
  21.  
  22.  
  23. /* PRIVATE METHODS */
  24.  
  25. - setListToFiles:(const char *const *) filenames;
  26.  
  27. - setImageToFile:(const char *)imageName;
  28. - drawSelf:(NXRect *)rects :(int)rectCount;
  29. - next:sender;
  30. - animate:sender;
  31. - setSpeed:sender;
  32.  
  33. @end
  34.